/* Edited for ZBrush version 2021 WITH NOTEPAD++
CONCEPT
ZBrush Macro //get all, as well as sizes, let user hit buttons :), some file operations to get and or save settings.

*/

[VarSet,#width,[IGet,Document:Width]]
[VarSet,#height,[IGet,Document:Height]]
[VarSet,#bgcolor,[IGet,4161]] //get color
[VarSet,#bgRate,[IGet,4185]] //get Rate
[VarSet,#bgCenter,[IGet,4187]] //get Center
[VarSet,#bgRange,[IGet,4186]] //get Range
[VarSet,#note1,[StrMerge,"\nThe Document is ",#width," Wide by ",#height," Tall"]]
[IButton,???,"Get_BG_COLOR",

[Note,#note1,0,-1] // Dimensions of canvas
[Note,[StrMerge,"\nBackground Color # is ",#bgcolor],0,-1,0x080808,1,1,0,1]
[Note,[StrMerge,"\nBackground Rate is ",#bgRate],0,-1,0x080808,1,1,0,1]
[Note,[StrMerge,"\nBackground Center is ",#bgCenter],0,-1,0x080808,1,1,0,1]
[Note,[StrMerge,"\nBackground Range is ",#bgRange]]

]//end of file
